home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 12 / CU Amiga Magazine's Super CD-ROM 12 (1997)(EMAP Images)(GB)[!][issue 1997-07].iso / CUCD / Games / DestructivePoker / sources / sources.lha / IntLabel.cpp < prev    next >
C/C++ Source or Header  |  1997-02-20  |  517b  |  28 lines

  1. /*
  2.         IntLabel.cpp
  3.  
  4.         V1.00 - 121296  Kimmo Teräväinen
  5.         -----   ------  ----------------
  6.         Look   IntLabel.h
  7. */
  8.  
  9. #include "intlabel.h"
  10. #include <stdio.h>
  11.  
  12. extern UBYTE pens[];
  13.  
  14. void TIntLabel::Update(RastPort *rp)
  15. {
  16. #if 1
  17.   char text[7];
  18.   int len=0;
  19.   cPanel::Update(rp);
  20.   sprintf(text,"%ld",(long)val);
  21.   while(text[len]) len++;
  22.   ::Move(rp,Left()+8,Top()+(Height()-8)/2+rp->TxBaseline);
  23.   SetBPen(rp,pens[0]);
  24.   SetAPen(rp,pens[1]); SetDrMd(rp,JAM1);
  25.   Text(rp,(UBYTE*)text,len);
  26. #endif
  27. }
  28.